[DEPRECATED] Use form field endpoints instead. Delete a specific workflow custom field selection by id
curl --request DELETE \
--url https://api.rootly.com/v1/workflow_custom_field_selections/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "1",
"type": "workflow_custom_field_selections",
"attributes": {
"custom_field_id": 167,
"workflow_id": "e10c2281-54a5-4fe5-a92a-f7144b8e742c",
"incident_condition": "ANY",
"values": [],
"selected_option_ids": []
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
workflow_custom_field_selection deleted
The response is of type object
.
Was this page helpful?
curl --request DELETE \
--url https://api.rootly.com/v1/workflow_custom_field_selections/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "1",
"type": "workflow_custom_field_selections",
"attributes": {
"custom_field_id": 167,
"workflow_id": "e10c2281-54a5-4fe5-a92a-f7144b8e742c",
"incident_condition": "ANY",
"values": [],
"selected_option_ids": []
}
}
}